home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / ab20 / unarced / utilities / shells / sksh / scr_source / histsave.s < prev    next >
Text File  |  1995-03-17  |  547b  |  19 lines

  1. #!c:sksh
  2.  
  3. #*************************************************************************
  4. # Small history save function
  5. #*************************************************************************
  6.  
  7.    if [ "$1" = '-?' -o "$#" -gt 1 ]
  8.    then
  9.        echo 'Usage:' $(basename $0) '[ <f> ]'
  10.        echo '       (saves history list in s:SKsh_Hist.<f>,' \
  11.             'default <f> = $CLINUM)'
  12.        return 1
  13.    fi
  14.  
  15.    [ "$SIZE" = 'normal' ] ||
  16.        echo "This command does not operate with Tiny_SKsh." && return 2
  17.  
  18.    history > "s:SKsh_Hist.${1:-$CLINUM}"
  19.